home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000111_news@watsun.cc.columbia.edu _Mon Jan 11 12:45:00 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA21873
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 11 Jan 1999 12:44:58 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA09040
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 11 Jan 1999 12:40:17 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: "Scott Davis" <scott.davis@principia.edu>
  10. Subject: Switching from TCP to serial causes a problem
  11. Date: Mon, 11 Jan 1999 12:15:11 -0500
  12. Organization: EarthLink Network, Inc.
  13. Message-ID: <77dbj3$ptr$1@oak.prod.itd.earthlink.net>
  14. To: kermit.misc@mailrelay2.cc.columbia.edu
  15.  
  16. I am running C-kermit 6 (latest build) on AIX 4.
  17. Everything has been working well for a time now.
  18. But we have just added a Cisco modem bank (telnet access).
  19. A problem arises when a user switches from using the modem bank to a regular
  20. serial modem.
  21. Here is the series of commands that get executed (from the beginning).
  22. ----
  23. set host 132.147.1.2:7001 # This is to use the cisco modem bank.
  24. dial ...
  25. hangup
  26. set line /dev/tty12 # This is to use a regular serial modem.
  27. --------
  28. At this point "show comm" reports that the speed of /dev/tty12 is "unknown".
  29. All attempts to actually use /dev/tty12 lock up until kermit is exited.
  30. If the "hangup" command is NOT used, then the set line works, and access to
  31. tty12 is normal.
  32. We are puzzled at this.